home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
mcode_01
/
source
/
basics
/
putchar.s
< prev
next >
Wrap
Text File
|
1995-04-27
|
379b
|
13 lines
* Program : Display a character on the screen
* Author : Stephen McNabb
* Creation date : 15th February 1995
* Last update : 15th February 1995
* Parameters : Character to be displayed
* Output : None
start: move.w #'A',-(sp) /move 'A' onto stack
move.w #2,-(sp) /use Cconout() function
trap #1 /use gemdos
end: addq.l #4,sp /tidy up stack
*** End of file ***